GetEnumerator Method

Task Parallel System.Threading

Returns an enumerator that iterates through the ConcurrentBag<(Of <(T>)>).

Namespace:  System.Collections.Concurrent
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public Function GetEnumerator As IEnumerator(Of T)
C#
public IEnumerator<T> GetEnumerator()

Return Value

An enumerator for the contents of the ConcurrentBag<(Of <(T>)>).

Remarks

The enumeration represents a moment-in-time snapshot of the contents of the bag. It does not reflect any updates to the collection after GetEnumerator()()() was called. The enumerator is safe to use concurrently with reads from and writes to the bag.

See Also